2009-03-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
Bug 457086 - numpad does not work when the Thai-Lao input method is
used
* modules/input/gtkimcontextthai.c (is_context_lost_key): Do not count
character-generating keypads as context-lost keys. (patch recommitted
after approval)
svn path=/trunk/; revision=22437
+2009-03-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
+
+ Bug 457086 - numpad does not work when the Thai-Lao input method is
+ used
+
+ * modules/input/gtkimcontextthai.c (is_context_lost_key): Do not count
+ character-generating keypads as context-lost keys. (patch recommitted
+ after approval)
+
2009-03-01 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkkeysyms.h: Fix the sorting of GDK_KP_Equal.
keyval == GDK_Escape ||
keyval == GDK_Delete ||
(GDK_Home <= keyval && keyval <= GDK_Begin) || /* IsCursorkey */
- (GDK_KP_Space <= keyval && keyval <= GDK_KP_Equal) || /* IsKeypadKey */
+ (GDK_KP_Space <= keyval && keyval <= GDK_KP_Delete) || /* IsKeypadKey, non-chars only */
(GDK_Select <= keyval && keyval <= GDK_Break) || /* IsMiscFunctionKey */
(GDK_F1 <= keyval && keyval <= GDK_F35)); /* IsFunctionKey */
}